home *** CD-ROM | disk | FTP | other *** search
Makefile | 1986-02-18 | 503 b | 37 lines |
- CFILES = pathsend.c
-
- OBJECTS = pathsend.o
-
- PRINT = pathsend.c
-
- CMD = pathsend
- DESTIN = /usr/lib/uucp
- CFLAGS = -O $(DEFS)
- DEFS =
- LIBS = -ldbm
- OWNER =
- MODE = 0755
-
- $(CMD) : $(OBJECTS) /lib/libc.a
- ld /lib/crt0.o $(OBJECTS) -o $(CMD) $(LIBS) -lc
-
- install : $(DESTIN)/$(CMD)
-
- $(DESTIN)/$(CMD) : $(CMD)
- cp $(CMD) $(DESTIN)/$(CMD)
- strip $(DESTIN)/$(CMD)
- chmod $(MODE) $(DESTIN)/$(CMD)
-
- depend :
- @makedepend $(CFILES)
-
- clean :
- -rm $(OBJECTS) $(CMD)
-
- print :
- print -h $(PRINT)
-
- lint :
- lint $(CFILES)
-
-